home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue32
/
chemtxt
/
CHEMTXT.ZIP
/
Chemreg.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1998-01-27
|
246 b
|
20 lines
{ (C) Patrik Spanel 1998}
unit ChemReg;
interface
procedure Register;
implementation
uses Classes,DbChemTx;
const page='Samples';
procedure Register;
begin
RegisterComponents(page,[TChemLabel,TDBChemText]);
end;
end.